home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / graphic / 1svga.zip / COLOR1.PAS < prev    next >
Pascal/Delphi Source File  |  1994-05-26  |  611b  |  27 lines

  1. { Show Text-Mode Mixed 16 Colors }
  2.  
  3. uses Txt;
  4.  
  5. { ─────────────── ShowColor ─────────────── }
  6. procedure ShowColor(Ty,X,Y:integer);
  7. const Pattern:array[1..3] of char=('▒','░','▓');
  8. var I,J:integer;
  9. begin
  10.   for I:=0 to 15 do for J:=0 to 15 do
  11.     TextBar(X+3*J,Y+I,3,1,16*I+J,Pattern[Ty]);
  12. end;
  13.  
  14. var I,K:integer;
  15. begin
  16.   TextBar(1, 1,80, 1,$3E,' ');
  17.   TextBar(1, 2,80,23,$1E,' ');
  18.   TextBar(1,25,80, 1,$3E,' ');
  19.   PrintChar(4,1,'Show Text-Mode Mixed 16 Colors');
  20.   PrintChar(4,25,'Press any key...');
  21.   SetFlash(0);
  22.   for I:=1 to 3 do begin
  23.     ShowColor(I,15,5);
  24.     K:=Key;
  25.   end;
  26. end.
  27.